home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / sun4c.md / netLEMach.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  3KB  |  97 lines

  1. /* 
  2.  * netLEMach.c --
  3.  *
  4.  *    Machine dependent routines for the sun4c LANCE driver. 
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/net/sun4c.md/netLEMach.c,v 1.1 91/03/19 13:59:01 jhh Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <sys.h>
  22. #include <list.h>
  23. #include <netInt.h>
  24. #include <netLEInt.h>
  25. #include <vm.h>
  26. #include <vmMach.h>
  27. #include <mach.h>
  28. #include <machMon.h>
  29. #include <dbg.h>
  30. #include <assert.h>
  31.  
  32.  
  33. /*
  34.  *----------------------------------------------------------------------
  35.  *
  36.  * NetLEMachInit --
  37.  *
  38.  *    Verify that the interface exists and set up the machine dependent
  39.  *    state.
  40.  *
  41.  * Results:
  42.  *    SUCCESS if the LANCE controller was found and initialized,
  43.  *    FAILURE otherwise.
  44.  *
  45.  * Side effects:
  46.  *    Initializes the netEtherFuncs record, as well as the chip.
  47.  *
  48.  *----------------------------------------------------------------------
  49.  */
  50.  
  51. ReturnStatus
  52. NetLEMachInit(interPtr, statePtr)
  53.     Net_Interface    *interPtr;     /* Network interface. */
  54.     NetLEState        *statePtr;    /* State structure. */
  55. {
  56.     Address     ctrlAddr;    /* Kernel virtual address of controller. */
  57.     char        buffer[32];
  58.  
  59.     ctrlAddr = interPtr->ctrlAddr;
  60.     /*
  61.      * If the address is physical (not in kernel's virtual address space)
  62.      * then we have to map it in.
  63.      */
  64.     if (interPtr->virtual == FALSE) {
  65.     ctrlAddr = (char *) VmMach_MapInDevice(ctrlAddr, 1);
  66.     }
  67.     /*
  68.      * The onboard control register is at a pre-defined kernel virtual
  69.      * address.  The virtual mapping is set up by the sun PROM monitor
  70.      * and passed to us from the netInterface table.
  71.      */
  72.  
  73.     statePtr->regPortPtr = (volatile NetLE_Reg *) ctrlAddr;
  74.     {
  75.     /*
  76.      * Poke the controller by setting the RAP.
  77.      */
  78.     short value = NET_LE_CSR0_ADDR;
  79.     ReturnStatus status;
  80.     status = Mach_Probe(sizeof(short), (char *) &value, 
  81.               (char *) (((short *)(statePtr->regPortPtr)) + 1));
  82.     if (status != SUCCESS) {
  83.         return(status);
  84.     }
  85.     } 
  86.     Mach_SetHandler(interPtr->vector, Net_Intr, (ClientData) interPtr);
  87.     /*
  88.      * Get ethernet address out of the rom.  
  89.      */
  90.  
  91.     Mach_GetEtherAddress(&statePtr->etherAddress);
  92.     (void) Net_EtherAddrToString(&statePtr->etherAddress, buffer);
  93.     printf("%s-%d Ethernet address %s\n",interPtr->name, interPtr->number,
  94.         buffer);
  95.     return SUCCESS;
  96. }
  97.